home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / lib / mathlib / libblas / ludec / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  681 b   |  33 lines

  1. #!smake
  2. include ../demodefs
  3.  
  4. TARGETS = fast
  5.  
  6. # For single-processor R3000 based systems use:
  7. # FFLAGS  = -O
  8. # LLDLIBS = -lblas -lgl
  9.  
  10. # For multiple-processor R3000 based systems use:
  11. # FFLAGS  = -O -mp
  12. # LLDLIBS = -lblas_mp -lgl -mp
  13.  
  14. # For single-processor R4000 or R4400 based systems use:
  15.  FFLAGS  = -O -mips2
  16.  LLDLIBS = -lblas -lgl -mips2
  17.  
  18. # For multi-processor R4000 or R4400 based systems use:
  19. # FFLAGS  = -O -mp -mips2
  20. # LLDLIBS = -lblas_mp -lgl -mp -mips2
  21.  
  22. CFILES = main.c fast.c draw.c init.c menu.c event.c second.c
  23. FFILES = linpack.f lapack.f
  24. HFILES = fast.h event.h
  25.  
  26. include ../demorules
  27.  
  28.  
  29. ${TARGETS}: ${OBJECTS}
  30.     ${F77} -o $@ ${OBJECTS} ${LDFLAGS}
  31.     ${TAG} 0x9006 $@
  32.